home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / network / lattice / portlib.lzh / PORTLIB / CFSETSPE.C next >
Encoding:
C/C++ Source or Header  |  1994-05-22  |  184 b   |  13 lines

  1. #include <sys/types.h>
  2. #include <termios.h>
  3.  
  4. int
  5. cfsetspeed (tt, baud)
  6.     struct termios *tt;
  7.     speed_t baud;
  8. {
  9.     cfsetispeed (tt, baud);
  10.     cfsetospeed (tt, baud);
  11.     return 0;
  12. }
  13.